home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / hangx.h < prev    next >
C/C++ Source or Header  |  1999-01-30  |  1KB  |  34 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef hangyH
  3. #define hangyH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published:    // IDE-verwaltete Komponenten
  14.     TButton *ReadyButton;
  15.     TButton *NewButton;
  16.     TPanel *Panel1;
  17.     TPanel *Panel2;
  18.     TImage *Image1;
  19.     TLabel *Label1;
  20.     void __fastcall FormCreate(TObject *Sender);
  21.     void __fastcall NewButtonClick(TObject *Sender);
  22.     void __fastcall FormKeyPress(TObject *Sender, char &Key);
  23.     void __fastcall ReadyButtonClick(TObject *Sender);
  24. private:    // Benutzer-Deklarationen
  25. public:        // Benutzer-Deklarationen
  26.     void __fastcall SetZero (void);
  27.     void __fastcall DrawHangMan(void);
  28.     __fastcall TForm1(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern TForm1 *Form1;
  32. //---------------------------------------------------------------------------
  33. #endif
  34.